home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / UNIXTOOL / GNU / GNUDBM / GNUDBM~ / <tarZ$use> / files / GNUDbm / C / Test < prev    next >
Text File  |  1990-03-01  |  8KB  |  291 lines

  1. /* test.c - Driver program to test the database routines.
  2.    Uses inside information. */
  3.  
  4. /*  GNU DBM  - DataBase Manager (database subroutines) by Philip A. Nelson
  5.     Copyright (C) 1989  Free Software Foundation, Inc.
  6.  
  7.     This program is free software; you can redistribute it and/or modify
  8.     it under the terms of the GNU General Public License as published by
  9.     the Free Software Foundation.
  10.  
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU General Public License for more details.
  15.  
  16.     You should have received a copy of the GNU General Public License
  17.     along with this program; if not, write to the Free Software
  18.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20.     You may contact the author by:
  21.        e-mail:  phil@wwu.edu
  22.       us-mail:  Philip A. Nelson
  23.                 Computer Science Department
  24.                 Western Washington University
  25.                 Bellingham, WA 98226
  26.         phone:  (206) 676-3035
  27.  
  28. *************************************************************************/
  29.  
  30. #include <stdlib.h>
  31. #include <string.h>
  32. #include <stdio.h>
  33.  
  34. #include "gdbm.h"
  35. #include "extern.h"
  36. #include "gdbmerrno.h"
  37. #include "gdbmutils.h"
  38.  
  39. /* Debug procedure to print the contents of the current hash bucket. */
  40. void print_bucket(hash_bucket * bucket, char *mesg)
  41. {
  42.     int index;
  43.  
  44.     printf("******* %s **********\n\nbits = %d\ncount= %d\nHash Table:\n",
  45.            mesg, bucket->bucket_bits, bucket->count);
  46.     printf("     #    hash value      key size     data size   home\n");
  47.     for (index = 0; index < _dbm_file->header.bucket_elems; index++)
  48.         printf("  %4d  %12x  %12d  %12d  %5d\n", index,
  49.                bucket->h_table[index].hash_value,
  50.                bucket->h_table[index].key_size,
  51.                bucket->h_table[index].data_size,
  52.                bucket->h_table[index].hash_value % _dbm_file->header.bucket_elems);
  53. }
  54.  
  55.  
  56. /* The test program allows one to call all the routines plus the hash function.
  57.    The commands are single letter commands.  The user is prompted for all other
  58.    information.  The commands are q (quit), f (fetch), s (store), d (delete),
  59.    1 (firstkey), n (nextkey) and h (hash function). */
  60.  
  61. int main(void)
  62. {
  63.  
  64.     char cmd_ch;
  65.  
  66.     datum key_data;
  67.     datum data_data;
  68.     datum return_data;
  69.  
  70.     char key_line[500];
  71.     char data_line[1000];
  72.  
  73.     char done = FALSE;
  74.     key_data.dptr = key_line;
  75.     data_data.dptr = data_line;
  76.     setbuf(stderr, 0);
  77.     _dbm_file = gdbm_open("JunkDbm", 512, DBM_WRITER, NULL);
  78.     if (_dbm_file == NULL)
  79.     {
  80.         if (gdbm_errno != CANT_BE_WRITER)
  81.             printf("dbminit failed (error %d).\n", gdbm_errno);
  82.         else
  83.             printf("Can't open as a writer. \n");
  84.         exit(2);
  85.     }
  86.     gdbm_recovery(_dbm_file, FALSE);
  87.  
  88.     while (!done)
  89.     {
  90.         printf("com -> ");
  91.         cmd_ch = getchar();
  92.         while (getchar() != '\n') /* Do nothing. */ ;
  93.         switch (cmd_ch)
  94.         {
  95.         case 'h':
  96.             printf("key -> ");
  97.             gets(key_line);
  98.             key_data.dsize = strlen(key_line) + 1;
  99.             printf("hash value = %x. \n\n", _dbm_hash(key_data));
  100.             break;
  101.  
  102.         case 'q':
  103.             done = TRUE;
  104.             break;
  105.  
  106.         case 'f':
  107.             printf("key -> ");
  108.             gets(key_line);
  109.             key_data.dsize = strlen(key_line) + 1;
  110.             return_data = fetch(key_data);
  111.             if (return_data.dptr != NULL)
  112.                 printf("data is ->%s\n\n", return_data.dptr);
  113.             else
  114.                 printf("No such item found.\n\n");
  115.             break;
  116.  
  117.         case 's':
  118.             printf("key -> ");
  119.             gets(key_line);
  120.             key_data.dsize = strlen(key_line) + 1;
  121.             printf("data -> ");
  122.             gets(data_line);
  123.             data_data.dsize = strlen(data_line) + 1;
  124.             if (store(key_data, data_data) != 0)
  125.                 printf("Item not inserted. \n");
  126.             printf("\n");
  127.             break;
  128.  
  129.         case 'd':
  130.             printf("key -> ");
  131.             gets(key_line);
  132.             key_data.dsize = strlen(key_line) + 1;
  133.             if (delete(key_data) != 0)
  134.                 printf("Item not found or deleted\n");
  135.             printf("\n");
  136.             break;
  137.  
  138.         case '1':
  139.             return_data = firstkey();
  140.             if (return_data.dptr != NULL)
  141.                 printf("data is ->%s\n\n", return_data.dptr);
  142.             else
  143.                 printf("No such item found.\n\n");
  144.             break;
  145.  
  146.         case 'n':
  147.             printf("key -> ");
  148.             gets(key_line);
  149.             key_data.dsize = strlen(key_line) + 1;
  150.             return_data = nextkey(key_data);
  151.             if (return_data.dptr != NULL)
  152.                 printf("data is ->%s\n\n", return_data.dptr);
  153.             else
  154.                 printf("No such item found.\n\n");
  155.             break;
  156.  
  157.         case '2':
  158.             strcpy(key_data.dptr, return_data.dptr);
  159.             key_data.dsize = strlen(key_line) + 1;
  160.             return_data = nextkey(key_data);
  161.             if (return_data.dptr != NULL)
  162.                 printf("data is ->%s\n\n", return_data.dptr);
  163.             else
  164.                 printf("No such item found.\n\n");
  165.             break;
  166.  
  167.         case 'b':
  168.             {
  169.                 int temp;
  170.                 char number[80];
  171.  
  172.                 printf("bucket? ");
  173.                 gets(number);
  174.                 sscanf(number, "%d", &temp);
  175.  
  176.                 if (temp >= _dbm_file->header.dir_size / 4)
  177.                 {
  178.                     printf("Not a bucket. \n\n");
  179.                     break;
  180.                 }
  181.                 _dbm_get_bucket(_dbm_file, temp << (31 - _dbm_file->header.dir_bits));
  182.             }
  183.             printf("Your bucket is now ");
  184.  
  185.         case 'p':
  186.             print_bucket(_dbm_file->bucket, "Current bucket");
  187.             printf("\n current directory entry = %d.\n", _dbm_file->bucket_dir);
  188.             printf(" current bucket address  = %d.\n\n", _dbm_file->bucket_adr);
  189.             break;
  190.  
  191.         case 'l':
  192.             {
  193.                 int temp;
  194.  
  195.                 printf("\nFile Header: \n\n");
  196.                 printf("  table        = %d\n", _dbm_file->header.dir);
  197.                 printf("  table size   = %d\n", _dbm_file->header.dir_size);
  198.                 printf("  table bits   = %d\n", _dbm_file->header.dir_bits);
  199.                 printf("  file size    = %d\n", _dbm_file->header.file_size);
  200.                 printf("  block size   = %d\n", _dbm_file->header.block_size);
  201.                 printf("  bucket elems = %d\n", _dbm_file->header.bucket_elems);
  202.                 printf("  bucket size  = %d\n", _dbm_file->header.bucket_size);
  203.                 for (temp = 0; temp < AVAIL_SIZE; temp++)
  204.                     printf("  avail list[%2d] = %d\n", temp,
  205.                     _dbm_file->header.avail_list[temp]);
  206.                 printf("  header magic = %x\n", _dbm_file->header.header_magic);
  207.                 printf("  update state = %x\n", _dbm_file->header.update_state);
  208.                 printf("\n");
  209.             }
  210.             break;
  211.  
  212.         case 'a':
  213.             _dbm_print_avail_list(_dbm_file);
  214.             printf("\n");
  215.             break;
  216.  
  217.         case 'r':
  218.             printf("Hash table directory.\n");
  219.             printf("  Size =  %d.  Bits = %d. \n\n", _dbm_file->header.dir_size,
  220.                    _dbm_file->header.dir_bits);
  221.             {
  222.                 int temp;
  223.  
  224.                 for (temp = 0; temp < _dbm_file->header.dir_size / 4; temp++)
  225.                     printf("  %10d:  %12d\n", temp, _dbm_file->dir[temp]);
  226.             }
  227.             printf("\n");
  228.             break;
  229.  
  230.         case 'c':
  231.             {
  232.                 int temp;
  233.                 temp = 0;
  234.                 return_data = firstkey();
  235.                 while (return_data.dptr != NULL)
  236.                 {
  237.                     temp++;
  238.                     strcpy(key_data.dptr, return_data.dptr);
  239.                     key_data.dsize = strlen(key_line) + 1;
  240.                     return_data = nextkey(key_data);
  241.                 }
  242.                 printf("There are %d items in the database.\n", temp);
  243.             }
  244.             break;
  245.  
  246.         case 'x':
  247.             {
  248.                 if (gdbm_reorganize(_dbm_file) != 0)
  249.                     printf("Reorganization failed. \n");
  250.                 else
  251.                     printf("Reorganization succeeded. \n");
  252.             }
  253.             break;
  254.  
  255.         case 'v':
  256.             printf("%s\n", gdbm_version);
  257.             break;
  258.  
  259.         case '?':
  260.             printf("a - print avail list\n");
  261.             printf("b - get and print current bucket n\n");
  262.             printf("c - count (number of entries)\n");
  263.             printf("d - delete\n");
  264.             printf("f - fetch\n");
  265.             printf("h - hash value of key\n");
  266.             printf("l - print file header\n");
  267.             printf("n - nextkey\n");
  268.             printf("p - print current bucket\n");
  269.             printf("q - quit\n");
  270.             printf("r - print hash directory\n");
  271.             printf("s - store\n");
  272.             printf("v - print version of gdbm\n");
  273.             printf("x - reorganize\n");
  274.             printf("1 - firstkey\n");
  275.             printf("2 - nextkey on last return value\n");
  276.             break;
  277.  
  278.         default:
  279.             printf("What? \n\n");
  280.             break;
  281.  
  282.         }
  283.     }
  284.  
  285.     /* Close the database */
  286.     dbmclose();
  287.  
  288.     /* Quit normally. */
  289.     return 0;
  290. }
  291.